home *** CD-ROM | disk | FTP | other *** search
- 10 PRINT "This program is producing a 40K text file named 40K-FILE.DOC"
- 12 PRINT " on Disk B. This file should be used for benchmarking"
- 14 PRINT " file-copy utility programs."
- 20 OPEN "b:40K-file.doc" FOR OUTPUT AS #1
- 30 B$="This file contains 640 lines, each of them having 64 chars...."
- 35 PRINT #1, B$
- 40 A$="This line contains 64 chars, including carriage return and LF."
- 60 FOR I=2 TO 640
- 80 PRINT #1, A$
- 100 NEXT I
- 120 CLOSE
- 140 SYSTEM
- contains 64 chars, including carriage retur